StructPredicate<T> Delegate
Represents the method that defines a set of criteria and determines whether the specified struct meets those criteria.
'Declaration
Public Delegate Function StructPredicate(Of As {New, Struct})( _
ByRef As _
) As System.Boolean
public delegate System.bool StructPredicate<>(
ref
)
where T: new(), struct
Parameters
- item
- The struct to compare against the criteria defined within the method represented by this delegate.
Type Parameters
- T
- The type of the struct to compare.
Return Value
true if item meets the criteria defined within the method represented by this delegate; otherwise, false.